gtk_window_group_add_window
gtk_window_group_remove_window
gtk_window_group_list_windows
-gtk_window_group_get_current_grab
+
<SUBSECTION Standard>
GTK_IS_WINDOW_GROUP
GTK_IS_WINDOW_GROUP_CLASS
gtk_init
gtk_init_check
-<SUBSECTION>
-gtk_grab_add
-gtk_grab_remove
-
<SUBSECTION>
GTK_PRIORITY_RESIZE
GDK_AVAILABLE_IN_ALL
GtkTextDirection gtk_get_locale_direction (void);
-GDK_AVAILABLE_IN_ALL
-void gtk_grab_add (GtkWidget *widget);
-GDK_AVAILABLE_IN_ALL
-void gtk_grab_remove (GtkWidget *widget);
-
GDK_AVAILABLE_IN_ALL
GdkEvent * gtk_get_current_event (void);
GDK_AVAILABLE_IN_ALL
#include "gtkcsstypesprivate.h"
#include "gtktexthandleprivate.h"
#include "gtkeventcontrollerprivate.h"
+#include "gtkwindowgroup.h"
G_BEGIN_DECLS
void gtk_main_sync (void);
+GtkWidget * gtk_window_group_get_current_grab (GtkWindowGroup *window_group);
+void gtk_grab_add (GtkWidget *widget);
+void gtk_grab_remove (GtkWidget *widget);
+
gboolean _gtk_boolean_handled_accumulator (GSignalInvocationHint *ihint,
GValue *return_accu,
const GValue *handler_return,
#include "gtkmain.h"
#include "gtkwindowprivate.h"
#include "gtkwindowgroup.h"
+#include "gtkprivate.h"
/**
/**
* gtk_window_group_new:
*
- * Creates a new #GtkWindowGroup object. Grabs added with
- * gtk_grab_add() only affect windows within the same #GtkWindowGroup.
+ * Creates a new #GtkWindowGroup object.
+ *
+ * Modality of windows only affects windows
+ * within the same #GtkWindowGroup.
*
* Returns: a new #GtkWindowGroup.
**/
return g_list_reverse (group_windows);
}
-/**
- * gtk_window_group_get_current_grab:
- * @window_group: a #GtkWindowGroup
- *
- * Gets the current grab widget of the given group,
- * see gtk_grab_add().
- *
- * Returns: (transfer none): the current grab widget of the group
- */
GtkWidget *
gtk_window_group_get_current_grab (GtkWindowGroup *window_group)
{
GDK_AVAILABLE_IN_ALL
GList * gtk_window_group_list_windows (GtkWindowGroup *window_group);
-GDK_AVAILABLE_IN_ALL
-GtkWidget * gtk_window_group_get_current_grab (GtkWindowGroup *window_group);
-
G_END_DECLS